added Feb 2001 SDK
[windows-sources.git] / shared source / sscli20 / tools / binplace / makefile.in
blobe0526f148d738ea7d64b7b04776494268cbd0f2b
1 # ==++==
3 #
4 # Copyright (c) 2006 Microsoft Corporation. All rights reserved.
5 #
6 # The use and distribution terms for this software are contained in the file
7 # named license.txt, which can be found in the root of this distribution.
8 # By using this software in any fashion, you are agreeing to be bound by the
9 # terms of this license.
11 # You must not remove this notice, or any other, from this software.
14 # ==--==
15 # ============================================================================
16 # File: makefile.in
17 # makefile for binplace
18 # ============================================================================
20 # Common part
21 TOP_SRC_DIR = @top_srcdir@
22 include $(TOP_SRC_DIR)/obj${BUILD_ALT_DIR}/${_BUILDARCH}/makefile.common
24 # Local changes
25 TARGET_NAME = $(_NTTREE)/binplace
27 LOCAL_CFLAGS =
29 # Source files
30 SOURCES = binplace.c
32 # Objects
33 OBJS = $(SOURCES:.c=.o)
35 # Targets
37 all: $(TARGET_NAME)
39 $(TARGET_NAME): $(OBJS)
40 $(LINK_CC) -o $@ $(OBJS)
42 clean:
43 rm -f *.o
44 rm -f $(TARGET_NAME)